TMS\SMS system (as client)connect to CPi2000 (as server, port: 19272) via TCP socket, then send the following string commands to set up CPi2000.

1. Set Input Source (0-3) command
command: setsrc <value>
0: "Digital Cinema"
1: "MIC"
2: "Analog Cinema"
3: "Music"
example: setsrc 1
return: setr "InputSource" "MIC" 

2. Get Input Source command
command: getsrc
example: getsrc 
return: get "InputSource" "MIC"

3. Set Volume Value (0-10) Cmd
command: setvol <value>
example: setvol 3
return: setr "MasterVol" "3"


4. Get Volume Value (0-10) Cmd
command: getvol
example: getvol 
return: get "MasterVol" "3"

5. Set Audio Input Type (0-1) Cmd
command: setch <value>
0: "5.1"
1: "7.1"
example: setch 1
return: setr "AudioInputType" "7.1"

6. Get Audio Input Type Cmd
command: getch
example: getch
return: get "AudioInputType" "7.1"

7. Set Mute Status
command: setmute <value>
0: "Off"
1: "On"
example: setmute 1
return: setr "Mute" "On"
setmute3

8. Get Mute Status
command: getmute
example:getmute
return: get "Mute" "On"

Remark: CPi2000 uses a <LF> character to detect the end of a string command, if your TMS\SMS system allows different Line feed types, make sure set it to <LF> or <CR><LF>. Otherwise please try to change the commands to the following format to see which one suits your system.
   setvol 3\r\n
or setvol 3\0D\0A
or setvol 3&#x0d; &#x0a;

